home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 48971 / 48971.xpi / content / ff-overlay.js next >
Text File  |  2009-11-29  |  459b  |  12 lines

  1. gview.onFirefoxLoad = function(event) {
  2.   document.getElementById("contentAreaContextMenu")
  3.     .addEventListener("popupshowing", function (e){ gview.showFirefoxContextMenu(e); }, false);
  4. };
  5.  
  6. gview.showFirefoxContextMenu = function(event) {
  7.   // show or hide the menuitem based on what the context menu is on
  8.   document.getElementById("context-gview").hidden = !gContextMenu.onLink;
  9. };
  10.  
  11. window.addEventListener("load", gview.onFirefoxLoad, false);
  12.